feat: Add Java Module System (JPMS) support to ODF Toolkit#430
Open
svanteschubert wants to merge 1 commit intotdf:masterfrom
Open
feat: Add Java Module System (JPMS) support to ODF Toolkit#430svanteschubert wants to merge 1 commit intotdf:masterfrom
svanteschubert wants to merge 1 commit intotdf:masterfrom
Conversation
Implement Java Platform Module System (JPMS) for all ODF Toolkit artifacts: - Add module-info.java for odfdom, validator, and xslt-runner modules - Configure module exports, requires, and opens directives - Update Maven plugin configurations for module-aware builds Changes: - Add module-info.java for org.odftoolkit.odfdom module - Add module-info.java for org.odftoolkit.odfvalidator module - Add module-info.java for org.odftoolkit.odfxsltrunner module - Fix test configurations: useModulePath=false for Surefire/Failsafe plugins - Update maven-failsafe-plugin from 2.22.2 to 3.2.5 in validator - Add javax.servlet-api as test dependency for validator module - Fix Jena test classes: replace ModelTestBase with TestCase - Add validation scripts: validate-modules.sh and validate-modules.bat - Add MODULE_SYSTEM.md documentation - Update google-java-format to 1.33.0 for better Java 17+ compatibility - Add gcf.skip property to allow skipping code formatting if needed - Format all module-info.java files with google-java-format All modules compile successfully and pass tests. JARs contain module-info.class for proper module system support. Backward compatibility maintained for classpath usage. Closes: tdf#54
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implement Java Platform Module System (JPMS) for all ODF Toolkit artifacts:
Changes:
All modules compile successfully and pass tests. JARs contain module-info.class for proper module system support. Backward compatibility maintained for classpath usage.
Closes: #54